home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{335C3C4F-E3F2-11D0-87E8-00A0C903B29D}#5.0#0"; "VCFI5.OCX"
- Begin VB.Form ChartForm
- Appearance = 0 'Flat
- BackColor = &H00C0C0C0&
- Caption = "First Impression Chart"
- ClientHeight = 3570
- ClientLeft = 5610
- ClientTop = 2775
- ClientWidth = 3870
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000008&
- Icon = "FirstImp.frx":0000
- LinkTopic = "Form1"
- MDIChild = -1 'True
- PaletteMode = 1 'UseZOrder
- ScaleHeight = 3570
- ScaleWidth = 3870
- Begin VtChartLib.VtChart VtChart1
- Height = 3615
- Left = 120
- TabIndex = 0
- Top = 0
- Width = 3735
- _ExtentX = 6588
- _ExtentY = 6376
- _0 = $"FirstImp.frx":030A
- _1 = $"FirstImp.frx":0710
- _2 = $"FirstImp.frx":0B15
- _3 = $"FirstImp.frx":0F1A
- _4 = $"FirstImp.frx":131F
- _5 = $"FirstImp.frx":1725
- _6 = $"FirstImp.frx":1B2A
- _7 = $"FirstImp.frx":1F2F
- _8 = $"FirstImp.frx":2334
- _9 = $"FirstImp.frx":2739
- _10 = $"FirstImp.frx":2B3E
- _11 = $"FirstImp.frx":2F43
- _12 = $"FirstImp.frx":3348
- _13 = $"FirstImp.frx":374D
- _count = 14
- _ver = 1
- End
- Attribute VB_Name = "ChartForm"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Form_Load()
- Top = 0
- Left = 0
- Width = MDIForm1.ScaleWidth
- Height = MDIForm1.ScaleHeight
- VtChart1.chartType = VtChChartType2dBar
- MDIForm1.mnuChart2DBar.Checked = True
- End Sub
- Private Sub Form_Resize()
- VtChart1.Repaint = False
- VtChart1.Top = 50
- VtChart1.Left = 50
- VtChart1.Width = ScaleWidth - 100
- VtChart1.Height = ScaleHeight - 100
- VtChart1.Repaint = True
- End Sub
-